Welcome![Sign In][Sign Up]
Location:
Search - s3c2410 dma linux

Search list

[Linux-Unixspidmadriver

Description: 本驱动程序在linux2.6.17中测试通过。yangxing msn:lelma_yx@hotmail.com 希望对SPI操作的朋友有所帮助。 一、工作方式: 从设备:SPI为MASTER模式 S3C2410:SPI为SLAVE模式+DMA 二、工作流程 1.S3C2410从接收:当从设备发送数据时,S3C2410利用DMA方式收数,收到指定长度的数据,则进入DMA中断,将接收的数据拷出。 2.S3C2410从发送:当S3C2410需要发送,首先由RTS请求发送,然后等待从设备应答CTS,当从设备应答CTS时,进入外部中断,启动DMA发送,发送完成,再次进入从接收状态。 三、文件位置 spi_dma_slave.c spi_dma_slave.h circular_buf.c circular_buf.h 等文件存放入driver/char/目录 dma.c存放于arch/arm/mach-s3c2410/目录 dma.h存放于include/arm-asm/mach-s3c2410/目录 四、使用环境 1.arm-linux-gcc-3.4.1-the driver linux2.6.17 in which the test. Yangxing msn : lelma_yx@hotmail.com hope to operate SPI friends help. 1, mode of work : from equipment : SPI for the S3C2410 MASTER mode : SPI for SLAVE + DMA mode 2, workflow 1.S3C2410 from receiving : When sending data from the device, using DMA S3C2410 debt, the length of the designated data DMA will enter the interruption will receive unfettered access to the data. 2.S3C2410 from this : When S3C2410 need this, the first request sent by the RTS, Then wait for the response from CTS equipment, when the equipment response from CTS, access to external interrupt start DMA sent, Send completed, re-entered, from receiving state. 3. Position papers spi_dma_slave.c spi_dma_slave.h circul ar_buf.c circular_buf.h documents onto the driver / char / Contents
Platform: | Size: 17368 | Author: y | Hits:

[Other resourceDMA10

Description: 自己写的支持S3C2410下的实时DMA操作的linux平台驱动程序 功能完善
Platform: | Size: 31520 | Author: 陈朝阳 | Hits:

[Other resourcelinuxdriver

Description: linux设备驱动 | |-- DMA范例 | | |-- 3c505.c | | |-- 3c505.h | | `-- dma.h | `-- 静态映射范例 | `-- mach-smdk2440.c |--- | |-- NVRAM驱动 | | `-- generic_nvram.c | |-- 触摸屏驱动 | | |-- 作为input设备 | | | |-- s3c2410_ts.c | | | `-- s3c2410_ts.h | | `-- 作为普通字符设备 | | `-- s3c2410-ts.c | |-- 看门狗驱动 | | `-- s3c2410_wdt.c | `-- 平台设备 | `-- devs.c |--- | |-- IDE驱动 | | |-- ide-disk.c | | `-- ide-h8300.c | `-- RAMDISK驱动 | `-- rd.c
Platform: | Size: 53791 | Author: 张小冬 | Hits:

[Bookslinux设备驱动程序开发详解

Description: 详细讲述了linux设备驱动程序的开发,想学习linux下设备驱动程序开发工作的人员可以参考。文件清单列出如下: linuxdriver_code_tool |-- 03 | `-- 2.6内核升级工具 | |-- device-mapper-1.00.19-2.i386.rpm | |-- lvm2-2.00.25-1.01.i386.rpm | |-- mkinitrd-4.2.0.3.tar.tar | |-- module-init-tools-3.2.2.tar.bz2 | `-- modutils-2.4.5-1.src.rpm |-- 04 | |-- 内核模块参数范例 | | `-- book.c | |-- 内核模块导出符号 | | `-- export_symb.c | `-- 最简单的内核模块 | `-- hello.c |-- 05 | `-- udev源代码 | `-- udev-114.tar.gz |-- 06 | |-- globalmem驱动 | | `-- globalmem.c | `-- 包含2个globalmem设备的驱动 | `-- globalmem_two.c |-- 07 | `-- 含并发控制的globalmem驱动 | `-- globalmem_lock.c |-- 08 | |-- globalfifo驱动 | | `-- globalfifo.c | `-- poll应用程序范例 | `-- pollmonitor.c |-- 09 | |-- 异步通知应用程序范例 | | `-- asyncmonitor.c | `-- 支持异步通知的globalfifo | `-- globalfifo_async.c |-- 10 | |-- S3C2410实时钟驱动 | | `-- s3c2410-rtc.c | `-- 秒设备驱动与应用程序 | |-- second.c | `-- second_test.c |-- 11 | |-- DMA范例 | | |-- 3c505.c | | |-- 3c505.h | | `-- dma.h | `-- 静态映射范例 | `-- mach-smdk2440.c |-- 12 | |-- NVRAM驱动 | | `-- generic_nvram.c | |-- 触摸屏驱动 | | |-- 作为input设备 | | | |-- s3c2410_ts.c | | | `-- s3c2410_ts.h | | `-- 作为普通字符设备 | | `-- s3c2410-ts.c | |-- 看门狗驱动 | | `-- s3c2410_wdt.c | `-- 平台设备 | `-- devs.c |-- 13 | |-- IDE驱动 | | |-- ide-disk.c | | `-- ide-h8300.c | `-- RAMDISK驱动 | `-- rd.c |-- 14 | |-- S3C2410串口驱动 | | |-- regs-gpio.h | | |-- regs-serial.h | | `-- s3c2410.c | `-- 串口核心层 | |-- serial_core.c | `-- serial_core.h |-- 15 | |-- S3C2410 I2C主机驱动 | | |-- i2c-s3c2410.c | | |-- iic.h | | |-- regs-gpio.h | | `-- regs-iic.h | `-- SAA711x I2C设备驱动 | `-- saa711x.c |-- 16 | `-- CS8900以太网设备驱动 | |-- cs89x0.c | `-- cs89x0.h |-- 17 | |-- ALSA工具及库 | | |-- alsa-driver-1.0.15.tar.bz2 | | |-- alsa-firmware-1.0.15.tar.bz2 | | |-- alsa-lib-1.0.15.tar.bz2 | | |-- alsa-oss-1.0.15.tar.bz2 | | |-- alsa-tools-1.0.15.tar.bz2 | | |-- alsa-utils-1.0.13.tar.bz2 | | `-- pyalsa-1.0.15.tar.bz2 | |-- ALSA驱动范例 | | |-- sa11xx-uda1341.c | | `-- uda1341.h | |-- ALSA应用程序范例 | | |-- pcm.c | | `-- pcm_min.c | |-- OSS驱动范例 | | `-- s3c2410-uda1341.c | `-- OSS应用程序范例 | |-- mixer.c | `-- sound.c |-- 18 | |-- FRAMEBUFFER应用程序范例 | | `-- fb_display | | |-- fb_display.c | | |-- fb_display.h | | |-- Makefile | | |-- README | | `-- test.c | `-- S3C2410 LCD驱动 | |-- s3c2410fb.c | `-- s3c2410fb.h |-- 19 | |-- busybox源代码 | | `-- busybox-1.2.1.tar.bz2 | |-- MTD工具 | | `-- mtd-utils-1.0.0.tar.gz | |-- nand驱动范例 | | `-- s3c2410.c | |-- nor驱动范例 | | `-- s3c2410nor.c | `-- yaffs&yaffs2源代码 | |-- yaffs.tar.gz | `-- yaffs2.tar.gz |-- 20 | |-- USB串口驱动 | | |-- usb-serial.c | | `-- usb-serial.h | |-- USB工具 | | `-- usbview-1.0.tar.tar | |-- USB骨架程序 | | `-- usb-skeleton.c | |-- USB键盘驱动 | | |-- input.h | | |-- usb_input.h | | `-- usbkbd.c | `-- usb主机控制器驱动范例 | |-- ohci-s3c2410.c | `-- usb-control.h |-- 21 | |-- PCI骨架程序 | | `-- pci-skeleton.c | `-- PCI驱动范例 | `-- i810_audio.c `-- 22 |-- 范例代码 | |-- oops范例 | | |-- oops_example.asm | | `-- oops_example.c | `-- proc范例 | `-- sim_proc.c `-- 内核调试工具 |-- ddd-3.3.11.tar.gz |-- gdbmod-2.4.bz2 |-- kdb-v4.4-2.6.15-rc5-common-1.bz2 |-- kdb-v4.4-2.6.15-rc5-common-2.bz2 |-- kdb-v4.4-2.6.15-rc5-i386-1.bz2 `-- linux-2.6.15.5-kgdb-2.4.tar.tar
Platform: | Size: 25078324 | Author: zxx000 | Hits:

[ARM-PowerPC-ColdFire-MIPSspidmadriver

Description: 本驱动程序在linux2.6.17中测试通过。yangxing msn:lelma_yx@hotmail.com 希望对SPI操作的朋友有所帮助。 一、工作方式: 从设备:SPI为MASTER模式 S3C2410:SPI为SLAVE模式+DMA 二、工作流程 1.S3C2410从接收:当从设备发送数据时,S3C2410利用DMA方式收数,收到指定长度的数据,则进入DMA中断,将接收的数据拷出。 2.S3C2410从发送:当S3C2410需要发送,首先由RTS请求发送,然后等待从设备应答CTS,当从设备应答CTS时,进入外部中断,启动DMA发送,发送完成,再次进入从接收状态。 三、文件位置 spi_dma_slave.c spi_dma_slave.h circular_buf.c circular_buf.h 等文件存放入driver/char/目录 dma.c存放于arch/arm/mach-s3c2410/目录 dma.h存放于include/arm-asm/mach-s3c2410/目录 四、使用环境 1.arm-linux-gcc-3.4.1-the driver linux2.6.17 in which the test. Yangxing msn : lelma_yx@hotmail.com hope to operate SPI friends help. 1, mode of work : from equipment : SPI for the S3C2410 MASTER mode : SPI for SLAVE+ DMA mode 2, workflow 1.S3C2410 from receiving : When sending data from the device, using DMA S3C2410 debt, the length of the designated data DMA will enter the interruption will receive unfettered access to the data. 2.S3C2410 from this : When S3C2410 need this, the first request sent by the RTS, Then wait for the response from CTS equipment, when the equipment response from CTS, access to external interrupt start DMA sent, Send completed, re-entered, from receiving state. 3. Position papers spi_dma_slave.c spi_dma_slave.h circul ar_buf.c circular_buf.h documents onto the driver/char/Contents
Platform: | Size: 17408 | Author: y | Hits:

[Embeded LinuxGSM_Sms

Description: S3C2410 上面的关于SMS 完整工程源代码,包括LCD、Flash、DMA、mmu、Power、Timer等驱动,以及SMS声音文件-S3C2410 above complete the project on the SMS source code, including LCD, Flash, DMA, mmu, Power, Timer, etc. drives, as well as SMS sound files
Platform: | Size: 1771520 | Author: 万兵 | Hits:

[ARM-PowerPC-ColdFire-MIPSS3C2410_BIOS_V2

Description: NAND Flash Boot Please select function : 0 : USB download file(通过USB下载文件) 1 : Uart download file(通过串口下载文件) 2 : Write Nand flash with download file(将下载的文件烧写到NandFlash) 3 : Load Pragram from Nand flash and run(从NandFlash装载文件并运行) 4 : Erase Nand flash regions(擦除NandFlash区域) 5 : Write NOR flash with download file(将下载的文件烧写到NorFlash) 6 : Set boot params(设置Linux启动相关参数) 7 : Set AutoBoot parameter,1:linux 2:wince(设置WINCE自启动)-NAND Flash BootPlease select function: 0: USB download file (through the USB to download files) 1: Uart download file (through the serial port to download files) 2: Write Nand flash with download file (the downloaded file to the programmer NandFlash) 3: Load Pragram from Nand flash and run (from the NANDFLASH loading files and running) 4: Erase Nand flash regions (Erase the NANDFLASH region) 5: Write NOR flash with download file (the downloaded file to the programmer NorFlash) 6: Set boot params ( Linux set to start the relevant parameters) 7: Set AutoBoot parameter, 1: linux 2: wince (set up since the launch of WINCE)
Platform: | Size: 409600 | Author: yang | Hits:

[Embeded LinuxDMA10

Description: 自己写的支持S3C2410下的实时DMA操作的linux平台驱动程序 功能完善-S3C2410 support himself under the operation of real-time DMA driver linux platform functions
Platform: | Size: 31744 | Author: 陈朝阳 | Hits:

[Embeded Linuxlinuxdriver

Description: linux设备驱动 | |-- DMA范例 | | |-- 3c505.c | | |-- 3c505.h | | `-- dma.h | `-- 静态映射范例 | `-- mach-smdk2440.c |--- | |-- NVRAM驱动 | | `-- generic_nvram.c | |-- 触摸屏驱动 | | |-- 作为input设备 | | | |-- s3c2410_ts.c | | | `-- s3c2410_ts.h | | `-- 作为普通字符设备 | | `-- s3c2410-ts.c | |-- 看门狗驱动 | | `-- s3c2410_wdt.c | `-- 平台设备 | `-- devs.c |--- | |-- IDE驱动 | | |-- ide-disk.c | | `-- ide-h8300.c | `-- RAMDISK驱动 | `-- rd.c-linux device drivers | | DMA Example | | | 3c505.c | | | 3c505.h | | `dma.h |` static mapping examples | `mach-smdk2440.c |- | | NVRAM driver | |` generic_nvram.c | | Touch Screen Driver | | | as the input device | | | | s3c2410_ts.c | | | `s3c2410_ts.h | |` as an ordinary character equipment | | `s3c2410-ts.c | | watchdog driver | |` s3c2410_wdt.c | `platform equipment |` devs.c |- | | IDE Driver | | | ide-disk.c | | `ide-h8300.c |` RAMDISK driver | `rd.c
Platform: | Size: 53248 | Author: 张小冬 | Hits:

[ARM-PowerPC-ColdFire-MIPSlinux_uart2_rs422

Description: 本程序主要是针对linux 下s3c2410下,串口驱动进行开发,针对高速率的串口数据采集,以DMA方式读取串口通信数据,并提供串口RS422的通信协议定义。次程序在2410上以成功测试过。-This procedure is mainly directed against s3c2410 under linux, the serial driver developed for high-speed serial data acquisition, DMA mode to read the serial communication of data and provides RS422 serial communication protocol definition. Meeting in 2410 on the procedure to have been successfully tested.
Platform: | Size: 116736 | Author: lisheng | Hits:

[Linux-Unixs3c-dma-ops

Description: (s3c2410 dma request for Linux v2.13.6.
Platform: | Size: 1024 | Author: twwigie | Hits:

[Linux driverlinux3.6.9-transplantation.tar

Description: 包含了移植linux3.6.9到s3c2410的详细步骤和错误的解决办法, 其中dma.c的改动可以解决高版本内核声音断续的问题,这也是很多移植教程里所没有提到的.-linux kernel 3.6.9 transplantation to s3c2410 board it contains the detailed steps and error solutions The dma.c changes can resolve the kernel sound intermittent problem in high version of kernel. which a lot of other transplantation tutorials are not mentioned.
Platform: | Size: 105472 | Author: loupen | Hits:

CodeBus www.codebus.net